home *** CD-ROM | disk | FTP | other *** search
- cls
- @echo off
- @echo ╔═══════════════════════════════════╗
- @echo ║ Threat Installation & Play Notes ║
- @echo ╚═══════════════════════════════════╝
- @echo .
- @echo .
- @echo Select from one of the following options:
- @echo 1. Run Game from CD
- @echo 2. Notes
- @echo 3. E(X)it
- @echo .
- @echo Please enter a choice: 1,2,3
- choice /c:123xr /n
- if errorlevel 5 goto vpr
- if errorlevel 4 goto end
- if errorlevel 3 goto end
- if errorlevel 2 goto w95
- if errorlevel 1 goto vpr
-
- :vpr
- CLS
- CD\THREAT
- CALL THREAT.EXE
- goto end
-
- :w95
- CLS
- CD\THREAT
- TYPE THREAT.DOC |MORE
- pause
- goto end
-
- :end
-